copyTo

Copies an image into another image

  1. Image2 copyTo(Image1 input, Image2 destination)
  2. Image2 copyTo(Image1 input, Image2 destination)
  3. Image2 copyTo(Image1 input, Image2 destination)
    @safe
    Image2
    copyTo
    (
    Image1
    Image2
    )
    (
    Image1 input
    ,)
    if (
    isImage!Image1 &&
    isImage!Image2
    )

Parameters

input Image1

The input image

destination Image2

The output image

Return Value

Type: Image2

The destination image for composibility reasons

Meta